Test Series - Data Structure

Test Number 49/115

Q: How many children does a binary tree have?
A. 2
B. any number of children
C. 0 or 1 or 2
D. 0 or 1
Solution: Can have atmost 2 nodes.
Q: What is/are the disadvantages of implementing tree using normal arrays?
A. difficulty in knowing children nodes of a node
B. difficult in finding the parent of a node
C. have to know the maximum number of nodes possible before creation of trees
D. difficult to implement
Solution: The size of array is fixed in normal arrays. We need to know the number of nodes in the tree before array declaration. It is the main disadvantage of using arrays to represent binary trees.
Q: What must be the ideal size of array if the height of tree is ‘l’?
A. 2l-1
B. l-1
C. l
D. 2l
Solution: Maximum elements in a tree (complete binary tree in worst case) of height ‘L’ is 2L-1. Hence size of array is taken as 2L-1.
Q: What are the children for node ‘w’ of a complete-binary tree in an array representation?
A. 2w and 2w+1
B. 2+w and 2-w
C. w+1/2 and w/2
D. w-1/2 and w+1/2
Solution: The left child is generally taken as 2*w whereas the right child will be taken as 2*w+1 because root node is present at index 0 in the array and to access every index position in the array.
Q: What is the parent for a node ‘w’ of a complete binary tree in an array representation when w is not 0?
A. floor(w-1/2)
B. ceil(w-1/2)
C. w-1/2
D. w/2
Solution: Floor of w-1/2 because we can’t miss a node.
Q: If the tree is not a complete binary tree then what changes can be made for easy access of children of a node in the array?
A. every node stores data saying which of its children exist in the array
B. no need of any changes continue with 2w and 2w+1, if node is at i
C. keep a seperate table telling children of a node
D. use another array parallel to the array with tree
Solution: Array cannot represent arbitrary shaped trees. It can only be used in case of complete trees. If every node stores data saying that which of its children exists in the array then elements can be accessed easily.
Q: What must be the missing logic in place of missing lines for finding sum of nodes of binary tree in alternate levels?

  //e.g:-consider -complete binary tree:-height-3, [1,2,3,4,5,6,7]-answer must be 23
  n=power(2,height)-1; //assume input is height and a[i] contains tree elements
  for(i=1;i<=n;)
  {
        //present level is initialized to 1 and sum is initialized to  0
        for(j=1;j<=pow(2,currentlevel-1);j++) 
        {
           sum=sum+a[i];
           i=i+1;
        }
     //missing logic
  }
A. i=i+pow(2,currentlevel); currentlevel=currentlevel+2; j=1;
B. i=i+pow(2,currentlevel); currentlevel=currentlevel+2; j=0;
C. i=i-pow(2,currentlevel); currentlevel=currentlevel+2; j=1;
D. i=i+pow(2,currentlevel); currentlevel=currentlevel+1; j=1;
Solution: The i value must skip through all nodes in the next level and current level must be one+next level.
Q: Consider a situation of writing a binary tree into a file with memory storage efficiency in mind, is array representation of tree is good?
A. yes because we are overcoming the need of pointers and so space efficiency
B. yes because array values are indexable
C. No it is not efficient in case of sparse trees and remaning cases it is fine
D. No linked list representation of tree is only fine
Solution: In case of sparse trees (where one node per level in worst cases), the array size (2h)-1 where h is height but only h indexes will be filled and (2h)-1-h nodes will be left unused leading to space wastage.
Q: Why is heap implemented using array representations than tree(linked list) representations though both tree representations and heaps have same complexities?

for binary heap
-insert: O(log n)
-delete min: O(log n)
 
for a tree
-insert: O(log n)
-delete: O(log n)
Then why go with array representation when both are having same values ?
A. arrays can store trees which are complete and heaps are not complete
B. lists representation takes more memory hence memory efficiency is less and go with arrays and arrays have better caching
C. lists have better caching
D. In lists insertion and deletion is difficult
Solution: In memory the pointer address for next node may not be adjacent or nearer to each other and also array have wonderful caching power from os and manipulating pointers is a overhead. Heap data structure is always a complete binary tree.
Q: Can a tree stored in an array using either one of inorder or post order or pre order traversals be again reformed?
A. Yes just traverse through the array and form the tree
B. No we need one more traversal to form a tree
C. No in case of sparse trees
D. Yes by using both inorder and array elements
Solution: We need any two traversals for tree formation but if some additional stuff or techniques are used while storing a tree in an array then one traversal can facilitate like also storing null values of a node in array.

You Have Score    /10